home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / RANDOM.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-03  |  341 b   |  22 lines

  1. #ifndef  RANDOM_H
  2. #define  RANDOM_H
  3.  
  4. #include <time.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8.  
  9. //_CLASSDEF(Random)
  10. class Random {
  11.    int cube_array[16];
  12.  
  13.    public:
  14.       void perm();
  15.       int  getValue(int);        //return the value at the ith index of
  16. };                               //   cube_array.
  17.  
  18.  
  19.  
  20. #endif
  21.  
  22.